Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
11 lines (7 loc) · 431 Bytes

12.1.8 - swoole_client->getPeerName.md

File metadata and controls

11 lines (7 loc) · 431 Bytes

swoole_client->getPeerName

获取对端socket的IP地址和端口,仅支持SWOOLE_SOCK_UDP/SWOOLE_SOCK_UDP6类型的swoole_client对象。

bool swoole_client->getpeername();

UDP协议通信客户端向一台服务器发送数据包后,可能并非由此服务器向客户端发送响应。可以使用getpeername方法获取实际响应的服务器IP:PORT。

此函数必须在$client->recv() 之后调用